2026-04-10 17:53:23,848 [ 109196 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2026-04-10 17:53:23,848 [ 109196 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2026-04-10 17:53:23,848 [ 109196 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2026-04-10 17:53:23,848 [ 109196 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_j3b6kp --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active test_backup_restore_on_cluster/test_different_versions.py::test_different_versions -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [2 items] scheduling tests via LoadFileScheduling test_backup_restore_on_cluster/test_different_versions.py::test_different_versions test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active [gw1] [ 50%] SKIPPED test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active [gw0] [100%] FAILED test_backup_restore_on_cluster/test_different_versions.py::test_different_versions =================================== FAILURES =================================== ___________________________ test_different_versions ____________________________ [gw0] linux -- Python 3.10.12 /usr/bin/python3 def test_different_versions(): new_node.query( "CREATE TABLE tbl" " ON CLUSTER 'cluster_ver'" " (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}')" " ORDER BY tuple()" ) new_node.query(f"INSERT INTO tbl VALUES (1)") old_node.query(f"INSERT INTO tbl VALUES (2)") backup_name = new_backup_name() initiator = random_node() print(f"Using {get_node_name(initiator)} as initiator for BACKUP") initiator.query(f"BACKUP TABLE tbl ON CLUSTER 'cluster_ver' TO {backup_name}") new_node.query("DROP TABLE tbl ON CLUSTER 'cluster_ver' SYNC") initiator = random_node() print(f"Using {get_node_name(initiator)} as initiator for RESTORE") initiator.query(f"RESTORE TABLE tbl ON CLUSTER 'cluster_ver' FROM {backup_name}") new_node.query("SYSTEM SYNC REPLICA ON CLUSTER 'cluster_ver' tbl") assert new_node.query("SELECT * FROM tbl ORDER BY x") == TSV([1, 2]) assert old_node.query("SELECT * FROM tbl ORDER BY x") == TSV([1, 2]) # Error NO_ELEMENTS_IN_CONFIG is unrelated. > assert ( new_node.query( "SELECT name, last_error_message FROM system.errors WHERE NOT (" "(name == 'NO_ELEMENTS_IN_CONFIG')" ")" ) == "" ) E assert "NETLINK_ERROR\tCan\\'t receive Netlink response: error -2\n" == '' E + NETLINK_ERROR Can\'t receive Netlink response: error -2 test_backup_restore_on_cluster/test_different_versions.py:105: AssertionError ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2026-04-10 17:53:31.539000 [ 642 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2026-04-10 17:53:31.560000 [ 642 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-04-10 17:53:31.560000 [ 642 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2026-04-10 17:53:31.560000 [ 642 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2026-04-10 17:53:31.560000 [ 642 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2026-04-10 17:53:31.583000 [ 642 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2026-04-10 17:53:31.586000 [ 642 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2026-04-10 17:53:31.586000 [ 642 ] INFO : Running tests in /ClickHouse/tests/integration/test_backup_restore_on_cluster/test_different_versions.py (cluster.py:2748, start) 2026-04-10 17:53:31.587000 [ 642 ] DEBUG : Cluster start called. is_up=False (cluster.py:2755, start) 2026-04-10 17:53:31.611000 [ 642 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:840, print_all_docker_pieces) 2026-04-10 17:53:31.630000 [ 642 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:848, print_all_docker_pieces) 2026-04-10 17:53:31.651000 [ 642 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions-gw0 are DRIVER VOLUME NAME (cluster.py:856, print_all_docker_pieces) 2026-04-10 17:53:31.651000 [ 642 ] DEBUG : Cleanup called (cluster.py:861, cleanup) 2026-04-10 17:53:31.672000 [ 642 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:840, print_all_docker_pieces) 2026-04-10 17:53:31.691000 [ 642 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:848, print_all_docker_pieces) 2026-04-10 17:53:31.713000 [ 642 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions-gw0 are DRIVER VOLUME NAME (cluster.py:856, print_all_docker_pieces) 2026-04-10 17:53:31.713000 [ 642 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclusterdifferentversions-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2026-04-10 17:53:31.736000 [ 642 ] DEBUG : Unstopped containers: {} (cluster.py:875, cleanup) 2026-04-10 17:53:31.736000 [ 642 ] DEBUG : No running containers for project: roottestbackuprestoreonclusterdifferentversions-gw0 (cluster.py:889, cleanup) 2026-04-10 17:53:31.736000 [ 642 ] DEBUG : Trying to prune unused networks... (cluster.py:895, cleanup) 2026-04-10 17:53:31.759000 [ 642 ] DEBUG : Trying to prune unused images... (cluster.py:911, cleanup) 2026-04-10 17:53:31.760000 [ 642 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2026-04-10 17:53:31.781000 [ 642 ] DEBUG : Stderr:Error response from daemon: a prune operation is already running (cluster.py:147, run_and_check) 2026-04-10 17:53:31.781000 [ 642 ] DEBUG : Exitcode:1 (cluster.py:149, run_and_check) 2026-04-10 17:53:31.782000 [ 642 ] DEBUG : Trying to prune unused volumes... (cluster.py:920, cleanup) 2026-04-10 17:53:31.782000 [ 642 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2026-04-10 17:53:31.803000 [ 642 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-04-10 17:53:31.803000 [ 642 ] DEBUG : Volumes pruned: 1 (cluster.py:925, cleanup) 2026-04-10 17:53:31.803000 [ 642 ] DEBUG : Setup directory for instance: new_node (cluster.py:2768, start) 2026-04-10 17:53:31.804000 [ 642 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4638, create_dir) 2026-04-10 17:53:31.804000 [ 642 ] DEBUG : Create directory for common tests configuration (cluster.py:4643, create_dir) 2026-04-10 17:53:31.804000 [ 642 ] DEBUG : Copy common configuration from helpers (cluster.py:4663, create_dir) 2026-04-10 17:53:31.805000 [ 642 ] DEBUG : Generate and write macros file (cluster.py:4715, create_dir) 2026-04-10 17:53:31.805000 [ 642 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster_different_versions.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/configs/config.d (cluster.py:4755, create_dir) 2026-04-10 17:53:31.806000 [ 642 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/database (cluster.py:4772, create_dir) 2026-04-10 17:53:31.806000 [ 642 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/logs (cluster.py:4783, create_dir) 2026-04-10 17:53:31.806000 [ 642 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4864, create_dir) 2026-04-10 17:53:31.806000 [ 642 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/backups (cluster.py:4893, create_dir) 2026-04-10 17:53:31.806000 [ 642 ] DEBUG : Setup directory for instance: old_node (cluster.py:2768, start) 2026-04-10 17:53:31.807000 [ 642 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4638, create_dir) 2026-04-10 17:53:31.807000 [ 642 ] DEBUG : Create directory for common tests configuration (cluster.py:4643, create_dir) 2026-04-10 17:53:31.807000 [ 642 ] DEBUG : Copy common configuration from helpers (cluster.py:4663, create_dir) 2026-04-10 17:53:31.808000 [ 642 ] DEBUG : Generate and write macros file (cluster.py:4715, create_dir) 2026-04-10 17:53:31.808000 [ 642 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster_different_versions.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/configs/config.d (cluster.py:4755, create_dir) 2026-04-10 17:53:31.808000 [ 642 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/database (cluster.py:4772, create_dir) 2026-04-10 17:53:31.809000 [ 642 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/logs (cluster.py:4783, create_dir) 2026-04-10 17:53:31.809000 [ 642 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4864, create_dir) 2026-04-10 17:53:31.809000 [ 642 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/backups (cluster.py:4893, create_dir) 2026-04-10 17:53:31.809000 [ 642 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'LSAN_OPTIONS': 'suppressions=/etc/clickhouse-server/lsan_suppressions.txt', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:5ccda723c1fc', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper3/coordination'} stored in /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/.env (cluster.py:96, _create_env_file) 2026-04-10 17:53:31.809000 [ 642 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2026-04-10 17:53:31.810000 [ 642 ] DEBUG : No config file found (config.py:28, find_config_file) 2026-04-10 17:53:31.810000 [ 642 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2026-04-10 17:53:31.810000 [ 642 ] DEBUG : No config file found (config.py:28, find_config_file) 2026-04-10 17:53:31.820000 [ 642 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2026-04-10 17:53:31.820000 [ 642 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/docker-compose.yml pull] (cluster.py:121, run_and_check) 2026-04-10 17:53:42.331000 [ 642 ] DEBUG : Stderr: zoo2 Skipped - Image is already being pulled by zoo1 (cluster.py:147, run_and_check) 2026-04-10 17:53:42.331000 [ 642 ] DEBUG : Stderr: zoo3 Skipped - Image is already being pulled by zoo1 (cluster.py:147, run_and_check) 2026-04-10 17:53:42.331000 [ 642 ] DEBUG : Stderr: new_node Skipped - Image is already being pulled by zoo1 (cluster.py:147, run_and_check) 2026-04-10 17:53:42.332000 [ 642 ] DEBUG : Stderr: zoo1 Pulling (cluster.py:147, run_and_check) 2026-04-10 17:53:42.332000 [ 642 ] DEBUG : Stderr: old_node Pulling (cluster.py:147, run_and_check) 2026-04-10 17:53:42.332000 [ 642 ] DEBUG : Stderr: zoo1 Pulled (cluster.py:147, run_and_check) 2026-04-10 17:53:42.332000 [ 642 ] DEBUG : Stderr: old_node Pulled (cluster.py:147, run_and_check) 2026-04-10 17:53:42.332000 [ 642 ] DEBUG : Setup ZooKeeper (cluster.py:2809, start) 2026-04-10 17:53:42.332000 [ 642 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper1/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper1/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper1/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper2/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper2/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper2/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper3/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper3/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/keeper3/coordination'] (cluster.py:2810, start) 2026-04-10 17:53:42.333000 [ 642 ] DEBUG : Command:[docker compose --project-name roottestbackuprestoreonclusterdifferentversions-gw0 --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:121, run_and_check) 2026-04-10 17:53:43.229000 [ 642 ] DEBUG : Stderr:time="2026-04-10T17:53:42Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2026-04-10 17:53:43.229000 [ 642 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions-gw0_default Creating (cluster.py:147, run_and_check) 2026-04-10 17:53:43.229000 [ 642 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions-gw0_default Created (cluster.py:147, run_and_check) 2026-04-10 17:53:43.229000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Creating (cluster.py:147, run_and_check) 2026-04-10 17:53:43.229000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Creating (cluster.py:147, run_and_check) 2026-04-10 17:53:43.229000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Creating (cluster.py:147, run_and_check) 2026-04-10 17:53:43.229000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Created (cluster.py:147, run_and_check) 2026-04-10 17:53:43.229000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Created (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Created (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Starting (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Starting (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Starting (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Started (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Started (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Started (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr:time="2026-04-10T17:53:43Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Stderr:time="2026-04-10T17:53:43Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : Wait ZooKeeper to start (cluster.py:2446, wait_zookeeper_to_start) 2026-04-10 17:53:43.230000 [ 642 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2015, get_instance_ip) 2026-04-10 17:53:43.232000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:43.233000 [ 642 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.2.3, port:2181, use_ssl:False (cluster.py:3322, get_kazoo_client) 2026-04-10 17:53:43.234000 [ 642 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:43.235000 [ 642 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 17:53:43.312000 [ 642 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:43.313000 [ 642 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 17:53:43.446000 [ 642 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:43.447000 [ 642 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 17:53:43.804000 [ 642 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:43.805000 [ 642 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 17:53:44.271000 [ 642 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:44.272000 [ 642 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 17:53:45.554000 [ 642 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:45.554000 [ 642 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-04-10 17:53:47.509000 [ 642 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:47.510000 [ 642 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-04-10 17:53:47.519000 [ 642 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-04-10 17:53:47.520000 [ 642 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-04-10 17:53:47.521000 [ 642 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-04-10 17:53:47.521000 [ 642 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-04-10 17:53:47.526000 [ 642 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-04-10 17:53:47.526000 [ 642 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-04-10 17:53:47.526000 [ 642 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-04-10 17:53:47.626000 [ 642 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-04-10 17:53:47.626000 [ 642 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-04-10 17:53:47.627000 [ 642 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2015, get_instance_ip) 2026-04-10 17:53:47.630000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:47.630000 [ 642 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.2.4, port:2181, use_ssl:False (cluster.py:3322, get_kazoo_client) 2026-04-10 17:53:47.632000 [ 642 ] INFO : Connecting to 172.16.2.4(172.16.2.4):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:47.632000 [ 642 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-04-10 17:53:47.636000 [ 642 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-04-10 17:53:47.636000 [ 642 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-04-10 17:53:47.637000 [ 642 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-04-10 17:53:47.638000 [ 642 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-04-10 17:53:47.641000 [ 642 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-04-10 17:53:47.641000 [ 642 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-04-10 17:53:47.641000 [ 642 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-04-10 17:53:47.727000 [ 642 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-04-10 17:53:47.728000 [ 642 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-04-10 17:53:47.728000 [ 642 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2015, get_instance_ip) 2026-04-10 17:53:47.731000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:47.732000 [ 642 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.2.2, port:2181, use_ssl:False (cluster.py:3322, get_kazoo_client) 2026-04-10 17:53:47.733000 [ 642 ] INFO : Connecting to 172.16.2.2(172.16.2.2):2181, use_ssl: False (connection.py:650, _connect) 2026-04-10 17:53:47.733000 [ 642 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-04-10 17:53:47.740000 [ 642 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-04-10 17:53:47.740000 [ 642 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-04-10 17:53:47.741000 [ 642 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-04-10 17:53:47.741000 [ 642 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-04-10 17:53:47.745000 [ 642 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-04-10 17:53:47.745000 [ 642 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-04-10 17:53:47.745000 [ 642 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-04-10 17:53:47.828000 [ 642 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-04-10 17:53:47.828000 [ 642 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-04-10 17:53:47.829000 [ 642 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2462, wait_zookeeper_nodes_to_start) 2026-04-10 17:53:47.829000 [ 642 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/docker-compose.yml up -d --no-recreate') (cluster.py:3149, start) 2026-04-10 17:53:47.830000 [ 642 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2026-04-10 17:53:48.417000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Running (cluster.py:147, run_and_check) 2026-04-10 17:53:48.418000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Running (cluster.py:147, run_and_check) 2026-04-10 17:53:48.418000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Running (cluster.py:147, run_and_check) 2026-04-10 17:53:48.418000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Creating (cluster.py:147, run_and_check) 2026-04-10 17:53:48.418000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Creating (cluster.py:147, run_and_check) 2026-04-10 17:53:48.418000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Created (cluster.py:147, run_and_check) 2026-04-10 17:53:48.418000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Created (cluster.py:147, run_and_check) 2026-04-10 17:53:48.418000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Starting (cluster.py:147, run_and_check) 2026-04-10 17:53:48.418000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Starting (cluster.py:147, run_and_check) 2026-04-10 17:53:48.419000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Started (cluster.py:147, run_and_check) 2026-04-10 17:53:48.419000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Started (cluster.py:147, run_and_check) 2026-04-10 17:53:48.419000 [ 642 ] DEBUG : ClickHouse instance created (cluster.py:3157, start) 2026-04-10 17:53:48.419000 [ 642 ] DEBUG : get_instance_ip instance_name=new_node (cluster.py:2015, get_instance_ip) 2026-04-10 17:53:48.422000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:48.423000 [ 642 ] DEBUG : get_instance_ip instance_name=new_node (cluster.py:2025, get_instance_global_ipv6) 2026-04-10 17:53:48.425000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:48.426000 [ 642 ] DEBUG : Waiting for ClickHouse start in new_node, ip: 172.16.2.6... (cluster.py:3165, start) 2026-04-10 17:53:48.427000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:48.430000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:48.534000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:48.639000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:48.743000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:48.847000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:48.951000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.054000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.159000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.263000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.367000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.470000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.575000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.679000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.783000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.886000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:49.990000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.094000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.198000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.303000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.407000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/7d45fe7faabdd0fb2205bab2ddc4449bafa6a26cd31197d6a864885ce8aecaa9/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.408000 [ 642 ] DEBUG : ClickHouse new_node started (cluster.py:3169, start) 2026-04-10 17:53:50.408000 [ 642 ] DEBUG : get_instance_ip instance_name=old_node (cluster.py:2015, get_instance_ip) 2026-04-10 17:53:50.410000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.411000 [ 642 ] DEBUG : get_instance_ip instance_name=old_node (cluster.py:2025, get_instance_global_ipv6) 2026-04-10 17:53:50.412000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.413000 [ 642 ] DEBUG : Waiting for ClickHouse start in old_node, ip: 172.16.2.5... (cluster.py:3165, start) 2026-04-10 17:53:50.415000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.417000 [ 642 ] DEBUG : http://localhost:None "GET /v1.46/containers/ba8dbcc9ef12009fda76b7e58d3b9c059a681d475de16baa268621feeeff5cc2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-04-10 17:53:50.418000 [ 642 ] DEBUG : ClickHouse old_node started (cluster.py:3169, start) ----------------------------- Captured stdout call ----------------------------- Using old_node as initiator for BACKUP Using new_node as initiator for RESTORE ------------------------------ Captured log call ------------------------------- 2026-04-10 17:53:50.421000 [ 642 ] DEBUG : Executing query CREATE TABLE tbl ON CLUSTER 'cluster_ver' (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}') ORDER BY tuple() on new_node (cluster.py:3658, query) 2026-04-10 17:53:50.838000 [ 642 ] DEBUG : Executing query INSERT INTO tbl VALUES (1) on new_node (cluster.py:3658, query) 2026-04-10 17:53:51.104000 [ 642 ] DEBUG : Executing query INSERT INTO tbl VALUES (2) on old_node (cluster.py:3658, query) 2026-04-10 17:53:51.370000 [ 642 ] DEBUG : Executing query BACKUP TABLE tbl ON CLUSTER 'cluster_ver' TO Disk('backups', '1') on old_node (cluster.py:3658, query) 2026-04-10 17:53:52.038000 [ 642 ] DEBUG : Executing query DROP TABLE tbl ON CLUSTER 'cluster_ver' SYNC on new_node (cluster.py:3658, query) 2026-04-10 17:53:52.556000 [ 642 ] DEBUG : Executing query RESTORE TABLE tbl ON CLUSTER 'cluster_ver' FROM Disk('backups', '1') on new_node (cluster.py:3658, query) 2026-04-10 17:53:53.224000 [ 642 ] DEBUG : Executing query SYSTEM SYNC REPLICA ON CLUSTER 'cluster_ver' tbl on new_node (cluster.py:3658, query) 2026-04-10 17:53:53.591000 [ 642 ] DEBUG : Executing query SELECT * FROM tbl ORDER BY x on new_node (cluster.py:3658, query) 2026-04-10 17:53:53.908000 [ 642 ] DEBUG : Executing query SELECT * FROM tbl ORDER BY x on old_node (cluster.py:3658, query) 2026-04-10 17:53:54.175000 [ 642 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE NOT ((name == 'NO_ELEMENTS_IN_CONFIG')) on new_node (cluster.py:3658, query) ---------------------------- Captured log teardown ----------------------------- 2026-04-10 17:53:54.529000 [ 642 ] DEBUG : Executing query DROP TABLE IF EXISTS tbl ON CLUSTER 'cluster_ver' SYNC on new_node (cluster.py:3658, query) 2026-04-10 17:53:54.947000 [ 642 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2026-04-10 17:54:03.045000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.045000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.045000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.045000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.045000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.045000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.046000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.046000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.046000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.046000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.046000 [ 642 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2026-04-10 17:54:03.059000 [ 642 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2026-04-10 17:54:03.073000 [ 642 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw0 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw0/old_node/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2026-04-10 17:54:03.588000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.589000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.589000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.589000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Removing (cluster.py:147, run_and_check) 2026-04-10 17:54:03.589000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.589000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Removing (cluster.py:147, run_and_check) 2026-04-10 17:54:03.590000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-new_node-1 Removed (cluster.py:147, run_and_check) 2026-04-10 17:54:03.590000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-old_node-1 Removed (cluster.py:147, run_and_check) 2026-04-10 17:54:03.590000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.590000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.590000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Stopping (cluster.py:147, run_and_check) 2026-04-10 17:54:03.591000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.591000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Removing (cluster.py:147, run_and_check) 2026-04-10 17:54:03.591000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.591000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Removing (cluster.py:147, run_and_check) 2026-04-10 17:54:03.591000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Stopped (cluster.py:147, run_and_check) 2026-04-10 17:54:03.591000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Removing (cluster.py:147, run_and_check) 2026-04-10 17:54:03.592000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo2-1 Removed (cluster.py:147, run_and_check) 2026-04-10 17:54:03.592000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo1-1 Removed (cluster.py:147, run_and_check) 2026-04-10 17:54:03.592000 [ 642 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw0-zoo3-1 Removed (cluster.py:147, run_and_check) 2026-04-10 17:54:03.592000 [ 642 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions-gw0_default Removing (cluster.py:147, run_and_check) 2026-04-10 17:54:03.592000 [ 642 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions-gw0_default Removed (cluster.py:147, run_and_check) 2026-04-10 17:54:03.593000 [ 642 ] DEBUG : Cleanup called (cluster.py:861, cleanup) 2026-04-10 17:54:03.619000 [ 642 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:840, print_all_docker_pieces) 2026-04-10 17:54:03.639000 [ 642 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:848, print_all_docker_pieces) 2026-04-10 17:54:03.658000 [ 642 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions-gw0 are DRIVER VOLUME NAME (cluster.py:856, print_all_docker_pieces) 2026-04-10 17:54:03.659000 [ 642 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclusterdifferentversions-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2026-04-10 17:54:03.676000 [ 642 ] DEBUG : Unstopped containers: {} (cluster.py:875, cleanup) 2026-04-10 17:54:03.677000 [ 642 ] DEBUG : No running containers for project: roottestbackuprestoreonclusterdifferentversions-gw0 (cluster.py:889, cleanup) 2026-04-10 17:54:03.677000 [ 642 ] DEBUG : Trying to prune unused networks... (cluster.py:895, cleanup) 2026-04-10 17:54:03.697000 [ 642 ] DEBUG : Trying to prune unused images... (cluster.py:911, cleanup) 2026-04-10 17:54:03.697000 [ 642 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2026-04-10 17:54:03.725000 [ 642 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2026-04-10 17:54:03.726000 [ 642 ] DEBUG : Images pruned (cluster.py:914, cleanup) 2026-04-10 17:54:03.726000 [ 642 ] DEBUG : Trying to prune unused volumes... (cluster.py:920, cleanup) 2026-04-10 17:54:03.726000 [ 642 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2026-04-10 17:54:03.747000 [ 642 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-04-10 17:54:03.748000 [ 642 ] DEBUG : Volumes pruned: 1 (cluster.py:925, cleanup) ----------------- generated report log file: parallel0_1.jsonl ----------------- ============================== slowest durations =============================== 18.88s setup test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 13.31s setup test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active 9.22s teardown test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 4.85s teardown test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active 4.02s call test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 0.47s call test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active =========================== short test summary info ============================ FAILED test_backup_restore_on_cluster/test_different_versions.py::test_different_versions SKIPPED [1] test_asynchronous_metric_jemalloc_profile_active/test.py:30: Disabled for sanitizers ======================== 1 failed, 1 skipped in 34.86s ========================= Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_j3b6kp --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active test_backup_restore_on_cluster/test_different_versions.py::test_different_versions -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 ' returned non-zero exit status 1.